home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Marlais / MacMarlais 0.5.9d46 / Examples / hello-world.dyl < prev    next >
Encoding:
Text File  |  1995-01-01  |  268 b   |  13 lines  |  [TEXT/Mrls]

  1. module:            dylan-user
  2. author:            Patrick C. Beard (beard@cs.ucdavis.edu)
  3. copyright:            ©1994 Patrick C. Beard, All rights reserved.
  4. version:            1.0
  5.  
  6. // how one might implement a stand-alone program.
  7.  
  8. define method main (#rest args)
  9.   princ("Hello, world.");
  10. end;
  11.  
  12. main();
  13.